home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / asmsrc / thesource-7.lha / Source / DefFunc.lha / DefFunc / Makefile < prev    next >
Makefile  |  1993-12-14  |  382b  |  24 lines

  1. # for library file 
  2. LIBDIR = /usr/lib 
  3.  
  4. # for include file
  5. INCDIR = /usr/include
  6.  
  7. CFLAGS = -O
  8. OBJS = defunc.o dfctree.o dfcsymtable.o y.tab.o
  9.  
  10. y.tab.c: dfcparse.y
  11.     $(YACC.y) dfcparse.y
  12.  
  13. install: libdfc.a
  14.     install libdfc.a $(LIBDIR)
  15.     install defunc.h $(INCDIR)
  16.     ranlib -t $(LIBDIR)/libdfc.a 
  17.  
  18. libdfc.a: $(OBJS)
  19.     $(AR) $(ARFLAGS) $@ $(OBJS)
  20.     ranlib $@
  21.  
  22. clean:
  23.     $(RM) $(OBJS) y.tab.c 
  24.